home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / sat / msat09.tgz / REQUEST.H < prev    next >
Text File  |  1994-09-17  |  427b  |  32 lines

  1. /*
  2.     request.h
  3.  
  4.     Defines for inter-program communications.
  5.  
  6.  
  7.     John Melton
  8.     G0ORX, N6LYT
  9.  
  10.     4 Charlwoods Close
  11.     Copthorne
  12.     West Sussex
  13.     RH10 3QZ
  14.     England
  15.  
  16.     INTERNET:    g0orx@amsat.org
  17.             n6lyt@amsat.org
  18.             john@images.demon.co.uk
  19.             J.D.Melton@slh0613.icl.wins.co.uk
  20. */
  21.  
  22. struct request
  23. {
  24.     int type;
  25. #define    REQ_TYPE_CANCEL    0
  26. #define    REQ_TYPE_DIR    1
  27. #define    REQ_TYPE_FILE    2
  28.  
  29.     unsigned long fileId;
  30. };
  31.  
  32.